/* Recharge Modal Overlay */
.recharge-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

/* Modal Content Box */
.recharge-modal-content {
    background: transparent;
    width: 900px;
    height: 570px;
    display: flex;
    gap: 0;
}

/* Sidebar Styling (Consistent) */
.recharge-modal-content .account-sidebar {
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px 0 8px 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Right Column */
.recharge-modal-content .account-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Card (Aligned with 60px) */
.recharge-modal-content .account-header-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 14px 40px 14px 60px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.1);
}

/* Main Panel */
.recharge-panel {
    flex: 1;
    padding: 30px 40px 30px 60px;
    /* Aligned left padding */
    margin-left: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.recharge-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    margin-top: 10px;
}

.recharge-input-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.recharge-input {
    width: 160px;
    height: 40px;
    border: 1px solid #333;
    /* Darker border as in image */
    outline: none;
    padding: 0 10px;
    font-size: 18px;
    margin-right: 15px;
}

.currency-label {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.payment-actions {
    display: flex;
    gap: 40px;
}

.payment-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 36px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 3px;
    min-width: 100px;
}

.payment-btn:hover {
    background: #000;
}